message = "fight the boss!" print(message) message2 = "Choose your weapon!" print(message2) message3 = "Your choices are: sword, axe, mace, or bow!" print(message3) message4 = "please choose an actual weapon" message5 = "You chose the sword!" message6 = "You chose the axe!" message7 = "You chose the mace!" message8 = "You chose the bow!" weapon = input("What weapon would you like to use?") if weapon == "sword": ValidChoice = "SWORD" elif weapon == "axe": ValidChoice = "AXE" elif weapon == "mace": ValidChoice = "MACE" elif weapon == "bow": ValidChoice = "BOW" else: ValidChoice = "False" while ValidChoice == "False": print(message4) weapon = input("What weapon would you like to use?") if weapon == "sword": ValidChoice = "SWORD" elif weapon == "axe": ValidChoice = "AXE" elif weapon == "mace": ValidChoice = "MACE" elif weapon == "bow": ValidChoice = "BOW" else: ValidChoice = "False" if ValidChoice == "SWORD": print(message5) if ValidChoice == "AXE": print(message6) if ValidChoice == "MACE": print(message7) if ValidChoice == "BOW": print(message8)